Custom JSX Factories
Custom JSX Factories
jsxFragmentFactory もjsxFactoryのように指定できるようになった
compilerOptions
ファイルに書くタイプもこんな感じ
code:ts
// Note: these pragma comments need to be written
// with a JSDoc-style multiline syntax to take effect.
/** @jsx h */
/** @jsxFrag Fragment */
import { h, Fragment } from "preact";
export const Header = (
<>
<h1>Welcome</h1>
</>
);